WorldEvent

sealed class WorldEvent : Event(source)

Non-cancellable event, split into Load and Unload.

Event call in the event of loading, or unloading a world.

Inheritors

Types

Link copied to clipboard
class Load(val world: World) : WorldEvent

Called in correspondence with net.minecraft.client.Minecraft.loadWorld if net.minecraft.client.multiplayer.WorldClient is not null. Therefore, Load is called by the EventBus only in the event that a client loads a new world. Whether that be a server connection, or a singleplayer world.

Link copied to clipboard
class Unload(val world: World) : WorldEvent

Called in correspondence with net.minecraft.client.Minecraft.loadWorld if net.minecraft.client.Minecraft.theWorld is not null. Therefore, Unload is called by the EventBus only in the event that a client unloads a world. Whether that be a server disconnection, or a singleplayer world.

Properties

Link copied to clipboard
val world: World